home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / Shared.cls < prev    next >
Text File  |  1997-06-14  |  551b  |  27 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "GShared"
  6. Attribute VB_GlobalNameSpace = True
  7. Attribute VB_Creatable = True
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = True
  10. Option Explicit
  11.  
  12. ' Put public properties that delegate shared data here
  13.  
  14. Property Get System() As CSystem
  15.     Set System = MShared.System
  16. End Property
  17.  
  18. Property Get Video() As CVideo
  19.     Set Video = MShared.Video
  20. End Property
  21.  
  22. Property Get Keyboard() As CKeyboard
  23.     Set Keyboard = MShared.Keyboard
  24. End Property
  25.  
  26.  
  27.